net/http.http2writeQueue.s (field)
21 uses
net/http (current package)
h2_bundle.go#L10806: s []http2FrameWriteRequest
h2_bundle.go#L10810: func (q *http2writeQueue) empty() bool { return len(q.s) == 0 }
h2_bundle.go#L10813: q.s = append(q.s, wr)
h2_bundle.go#L10817: if len(q.s) == 0 {
h2_bundle.go#L10820: wr := q.s[0]
h2_bundle.go#L10822: copy(q.s, q.s[1:])
h2_bundle.go#L10823: q.s[len(q.s)-1] = http2FrameWriteRequest{}
h2_bundle.go#L10824: q.s = q.s[:len(q.s)-1]
h2_bundle.go#L10833: if len(q.s) == 0 {
h2_bundle.go#L10836: consumed, rest, numresult := q.s[0].Consume(n)
h2_bundle.go#L10843: q.s[0] = rest
h2_bundle.go#L10854: for i := range q.s {
h2_bundle.go#L10855: q.s[i] = http2FrameWriteRequest{}
h2_bundle.go#L10857: q.s = q.s[:0]
h2_bundle.go#L11168: n.q.s = nil
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |